home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form fUsage
- BackColor = &H00C0C0C0&
- BorderStyle = 3 'Fixed Double
- Caption = "Evaluation copy"
- ClientHeight = 4125
- ClientLeft = 3450
- ClientTop = 1650
- ClientWidth = 6090
- ForeColor = &H00000000&
- Height = 4530
- Left = 3390
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 4125
- ScaleWidth = 6090
- Top = 1305
- Width = 6210
- Begin CommandButton Command1
- Caption = "OK"
- Height = 315
- Left = 2700
- TabIndex = 3
- Top = 3630
- Width = 795
- End
- Begin Label Label3
- BackColor = &H00C0C0C0&
- Caption = "When you register, you will be supplied with the latest version and..."
- Height = 645
- Index = 2
- Left = 150
- TabIndex = 4
- Top = 2700
- Width = 5805
- End
- Begin Label Label3
- BackColor = &H00C0C0C0&
- Caption = "If you find this program useful then you should register. Details on how to register can be found on the Help menu."
- Height = 405
- Index = 0
- Left = 150
- TabIndex = 2
- Top = 2130
- Width = 5805
- End
- Begin Label Label3
- BackColor = &H00C0C0C0&
- Caption = "This program is supplied on a 'Try before you buy' basis. Your license for this version allows you thirty days to evaluate it."
- Height = 465
- Index = 1
- Left = 150
- TabIndex = 6
- Top = 1530
- Width = 5805
- End
- Begin Label lblUsed
- BackColor = &H00C0C0C0&
- Caption = "You have used this program 99 times."
- Height = 285
- Left = 180
- TabIndex = 5
- Top = 1080
- Width = 3525
- End
- Begin Label lblVer
- Alignment = 2 'Center
- AutoSize = -1 'True
- BackColor = &H00C0C0C0&
- Caption = "Ver x.x"
- ForeColor = &H00000000&
- Height = 195
- Left = 120
- TabIndex = 1
- Top = 660
- Width = 5775
- End
- Begin Label lblAppName
- Alignment = 2 'Center
- AutoSize = -1 'True
- BackColor = &H00C0C0C0&
- Caption = "App Name"
- FontBold = -1 'True
- FontItalic = 0 'False
- FontName = "MS Sans Serif"
- FontSize = 24
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- ForeColor = &H00800000&
- Height = 555
- Left = 120
- TabIndex = 0
- Top = 60
- Width = 5790
- End
- ' ********************************************************
- ' MDI Standard Application Shell
- ' ********************************************************
- ' SUMMARY
- ' -------
- ' This file is part of an MDI application "skeleton"
- ' created by John Blessing of Leigh Business Enterprises Ltd.
- ' FEATURES
- ' --------
- ' Selection of application database.
- ' Compact/Repair of database.
- ' 'Helptips' on toolbar items.
- ' Support for Help files.
- ' MDI child forms tiling etc.
- ' Error trapping.
- ' 'Nag' screen support for shareware authors.
- ' Support for 3D dialogs (switched off in design mode
- ' to prevent GPFs)
- ' USE
- ' ---
- ' You need VB Pro to use this shell, although it could be
- ' modified to run under the standard edition.
- ' You will need to set up some information in APP.BAS,
- ' particularly in SetAppInfo(). You will also need to add
- ' your own application specific code to this module.
- ' DISTRIBUTION
- ' ------------
- ' This program is "FreeWare" and may be used and distributed
- ' as you wish.
- ' It incorporates some ideas/code from other authors and these
- ' are acknowledged in the appropriate module.
- ' We hope that you will find it useful. If you wish to discuss it
- ' then please e-mail us on Compuserve 100444,623.
- ' ADVERTISEMENT!
- ' --------------
- ' Are you looking for a helpdesk system? Or does your company
- ' want to track and monitor the progress of any work activity?
- ' We market a system which could be of interest to you.
- ' PROGRESS is available for download from the Business section
- ' of the Windows Shareware forum on Compuserve
- ' (filename PRGRSS10.ZIP). It's a large program, so in the
- ' same section you will also find the help files and
- ' documentation as PRGSSDOC.ZIP which is quicker to download
- ' and will give you a good idea of the functionality of PROGRESS.
- ' Dec 1994
- Option Explicit
- Sub Command1_Click ()
- Unload Me
- End Sub
- Sub Form_Load ()
- lblVer.Caption = "Ver " & CStr(tGApp.dVersion)
- lblAppName = tGApp.sName
- centre Me, mdiMain
- End Sub
- Sub Form_QueryUnload (Cancel As Integer, UnloadMode As Integer)
- KeepOnTop Me, False
- End Sub
-